We solved the "Uninstall InocuLAN problem" this way:

The application object copies three files to the workstation:

 StopIn.cmd
 UnInstall-InocuLAN.reg
 RemoveDir.exe

Run StopIn.cmd from an application object. The object should be run as a "Unsecure system user". In our case this was done at the time as we installed Norton antivirus on our workstations.  

This is what StopIn.cmd does:
===============================================================
	@ECHO OFF

	REM  Name: 		StopIn.cmd
	REM  Description: 	Uninstall InocuLAN Antivirus.
	REM  			Belongs to Appobject ...

	TITLE Uninstall InocuLAN Antivirus
	c:
	cd\
	cd c:\Temp

	ECHO *** Stop the InocuLAN service *** 
	NET STOP "Cheyenne InocuLAN Anti-Virus Server"

	ECHO *** Uninstall InocuLAN from the registry *** 
	Regedit /S UnInstall-InocuLAN.reg


	IF NOT EXIST c:\Inoculan GOTO END
	ECHO *** Deletes directorys/files from the harddisk *** 
	c:\Temp\RemoveDir c:\Inoculan

	:END
	EXIT
===============================================================

  
RemoveDir.exe is a little VB-app that deletes given directory with its subdirectories and files.


Marcus Westlund and Per-Jan Eriksson:
Swedish National Police Board
